home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #11 / CD 11 (Black) - 2001.iso / FAVORG / FAVO_SRC.ZIP / bystatedlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-10-25  |  2.1 KB  |  76 lines

  1. // FAVORG Version 1.1
  2. // Copyright (c) 2000 Ziff Davis Media, Inc.
  3. // All rights reserved.
  4. // First Published in PC Magazine, US Edition, November 7, 2000.
  5. // Programmer: Patrick Philippot
  6.  
  7. #if !defined(AFX_BYSTATEDLG_H__6613D5A6_61F9_11D4_907D_00A0249EABF4__INCLUDED_)
  8. #define AFX_BYSTATEDLG_H__6613D5A6_61F9_11D4_907D_00A0249EABF4__INCLUDED_
  9.  
  10. #if _MSC_VER > 1000
  11. #pragma once
  12. #endif // _MSC_VER > 1000
  13. // ByStateDlg.h : header file
  14. //
  15.  
  16. #define BYSTATE_ACCESSDENIED            1
  17. #define BYSTATE_PAGENONE                2
  18. #define BYSTATE_SITENONE                4
  19. #define BYSTATE_TIMEOUT                    8
  20.  
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CByStateDlg dialog
  23.  
  24. class CByStateDlg : public CDialog
  25. {
  26. // Construction
  27. public:
  28.     CByStateDlg(CWnd* pParent = NULL);   // standard constructor
  29.  
  30. // Dialog Data
  31.     //{{AFX_DATA(CByStateDlg)
  32.     enum { IDD = IDD_BYSTATE };
  33.     BOOL    m_bPageNotFound;
  34.     BOOL    m_bAccessDenied;
  35.     BOOL    m_bSiteNone;
  36.     BOOL    m_bTimeOut;
  37.     //}}AFX_DATA
  38.  
  39.     CFavOrgTreeCtl*    m_pFavTree;
  40.     int                m_nCount;
  41.     int                m_nCountAccessDenied;
  42.     int                m_nCountTimeout;
  43.     int                m_nCountSiteNone;
  44.     int                m_nCountPageNotFound;
  45.  
  46. // Overrides
  47.     // ClassWizard generated virtual function overrides
  48.     //{{AFX_VIRTUAL(CByStateDlg)
  49.     protected:
  50.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  51.     //}}AFX_VIRTUAL
  52.  
  53. // Implementation
  54. protected:
  55.  
  56.     // Generated message map functions
  57.     //{{AFX_MSG(CByStateDlg)
  58.     afx_msg void OnCheckAccessDenied();
  59.     afx_msg void OnCheckPageNone();
  60.     afx_msg void OnCheckSiteNone();
  61.     afx_msg void OnCheckTimeout();
  62.     virtual BOOL OnInitDialog();
  63.     afx_msg void OnHelp();
  64.     //}}AFX_MSG
  65.     DECLARE_MESSAGE_MAP()
  66.  
  67.     void CheckItemState(HTREEITEM hItem, BOOL bAccessDenied, BOOL bTimeout, BOOL bPageNotFound, BOOL bSiteNone);
  68.     void CountItemsByState(HTREEITEM hItem, BOOL bAccessDenied, BOOL bTimeout, BOOL bPageNotFound, BOOL bSiteNone);
  69.     void CByStateDlg::CountByState();
  70. };
  71.  
  72. //{{AFX_INSERT_LOCATION}}
  73. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  74.  
  75. #endif // !defined(AFX_BYSTATEDLG_H__6613D5A6_61F9_11D4_907D_00A0249EABF4__INCLUDED_)
  76.